Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632075 Views

Latest files of /cody/vishal-dcode/Scroll Animation

app.js cody/vishal-dcode/Scroll Animation/app.js
3 Views
0 Comments
const boxes = document.querySelectorAll(".article");

window.addEventListener("scroll", checkBoxes);

checkBoxes();

function checkBoxes() {
const triggerBottom = window.innerHeight / 2;
style.css cody/vishal-dcode/Scroll Animation/style.css
2 Views
0 Comments
body {
font-family: "Poppins";
background-color: #141414;
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
index.html cody/vishal-dcode/Scroll Animation/index.html
18 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link